home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Multimedia Viewer How-To CD / Microsoft Multimedia Viewer How-To CD.iso / viewerht / readme.txt < prev    next >
Text File  |  1994-03-23  |  6KB  |  120 lines

  1.         Microsoft Multimedia Viewer How-To 
  2.                   README.TXT
  3.  
  4.  
  5. LAST-MINUTE UPDATES:
  6. --------------------
  7. The TSTOOLS addon contains MANY more functions than originally expected.  Run the
  8. TSTOOLS.MVB and TSTOOLSW.MVB demos for more information.  The movies in these demos
  9. have caused errors with some ATI video drivers.  If this happens to you, it's worth
  10. switching to the standard VGA drivers temporarily so you can see the entire demos.
  11. To change drivers: exit Windows, change to the Windows directory (CD \WINDOWS), and
  12. execute setup.  This will display your current configuration and allow you to change
  13. drivers or features.  Be sure to make a note of the current valu for your video
  14. system before making changes, so you can return to your normal configuration later!
  15.  
  16. Two more DLLs had to be installed in your Windows\System directory: VWRHT.DLL and 
  17. VWRHT2.DLL.  Both DLLs are used only by the VIEWERHT.MVB application.
  18.  
  19. The total hard drive space required to install both the Viewer Toolkit and Viewer 
  20. How-To files from this CD is just over 43 megabytes.
  21.  
  22. The book says that the THREED.VBX file is installed in your WINDOWS\SYSTEM directory
  23. when you run the Viewer install.  It's actually copied into the MVPUBKIT\MVTOOLS
  24. directory instead.
  25.  
  26.  
  27. OTHER NOTES:
  28. ------------
  29. You might want to copy the VIEWERHT.MVB application file to your hard disk to provide 
  30. an easy reference for the future.  You will need the Viewer How-To CD in your CD drive 
  31. to be able to use the Demo buttons unless you change the VIEWER.INI entries for the demo 
  32. files.  The Demo button for Chapter 10 has to use a hard-coded relative path to the EXE
  33. files; to use these demos from your hard drive you must duplicate the CHAP10 directory
  34. structure and contents under the directory where you store the VIEWERHT.MVB file.
  35.  
  36. There are three routine differences between the sample How-To files on the CD
  37. and the instructions contained in the book:
  38.    o All windows have a caption, usually in the form 'How-To x.y Demo'.
  39.    o All sample files contain a copyright line.
  40.    o The Config script in all sample files includes a call to SetDir.  This
  41.      is explained below.
  42.  
  43. The SetDir function is needed only in demos that use external (non-Baggage) files,
  44. so they can be executed from the VIEWERHT.MVB application.  These calls assure
  45. that the correct drive and directory are active, by setting them to the drive
  46. and directory where the current MVB file is located.  This assures that the external 
  47. files can be found.  The calls are included in all demos for consistency.  The source
  48. code for this routine and a DLL that may be redistributed are available in the Viewer 
  49. section on CompuServe.  Please note that the VIEWERHT.DLL file may not be redistributed.
  50.  
  51. The demonstration file for the Pushbutton Viewer extension requires one file
  52. that was installed on your hard drive as part of Viewer.  You must copy the
  53. BOAT_LHS.AVI file from your MVPUBKIT\MVSAMPLE\GALLERY\VIDEO directory to the 
  54. MVPUBKIT\ADDONS\PUSH directory before running this demonstration.
  55.  
  56. Word and the Viewer Toolkit require that you be running SHARE.EXE.  (Windows for
  57. Workgroups automatically includes VSHARE.386).  If you have removed this from your
  58. AUTOEXEC.BAT file you will have to put this back.
  59.  
  60. WORD 6.0 USERS NOTE!!!!!!
  61. -------------------------
  62. There is an incompatibility between Word 6.0 and the Viewer compiler on the enclosed CD.  
  63. The same incompatibility exists with the initial commercial version of the compiler.  
  64. New commercial packages should contain the updated compiler, and licensed owners of the 
  65. toolkit can also get a copy from Microsoft through CompuServe (see Appendix C).
  66.  
  67. To use Word 6.0 with the compiler on this CD, you must add the following macro to your 
  68. Word template (file NORMAL.DOT) and execute the macro to save your RTF file instead of 
  69. using the File menu.  If you are not familiar with creating Word macros, refer to How-To 
  70. 5.2.  Use Notepad's Edit function to copy this text, or insert the entire README.TXT file 
  71. through Word's Insert menu function, to prevent errors.
  72.  
  73. Sub MAIN
  74.  
  75.   REM Copyright (C) 1992 Microsoft Corp.
  76.   REM Written by Clay Ver Valen
  77.  
  78.   Name$ = FileName$()    
  79.   FileSaveAs .Name = Name$, .Format = 6
  80.   FileClose 2
  81.   SendKeys "{UP 2}{ENTER}", 0
  82.   ConvertState = FileConfirmConversions()
  83.   FileOpen .Name = Name$, .ConfirmConversions = 1
  84.   EditFind .Find = "\fonttbl", .Direction = 0, .WholeWord = 0,     .MatchCase = 0, .PatternMatch = 0, .SoundsLike = 0, .Format = 0,     .Wrap = 0
  85.   ExtendSelection
  86.   EditFind .Find = "}}", .Direction = 0, .WholeWord = 0, .MatchCase =     0, .PatternMatch = 0, .SoundsLike = 0, .Format = 0, .Wrap = 0
  87.   EditReplace .Find = "\\fcharset?\\fprq?", .Replace = "", .Direction     = 0, .MatchCase = 0, .WholeWord = 0, .PatternMatch = 1, .SoundsLike     = 0, .ReplaceAll, .Format = 0, .Wrap = 0
  88.   FileSaveAs .Name = Name$, .Format = 2
  89.   FileClose 2
  90.   FileOpen .Name = Name$, .ConfirmConversions = 0
  91.   FileConfirmConversions Abs(ConvertState)    
  92. End Sub
  93.  
  94.  
  95. QUOTES, EM-DASHES, AND EN-DASHES:
  96. ---------------------------------
  97.  
  98. If you want to use real typographic quotes and dashes, and want to automate the translation 
  99. process described in How-To 5.3, try the following macro.  It saves your RTF file and then 
  100. converts it, much like the above Word 6 macro.  They can be combined into one if needed... 
  101. study the code to figure out how.  Note: this macro requires that you select confirming file
  102. conversions.
  103.  
  104. Sub MAIN
  105.   DocClose
  106.   SendKeys "{UP 2}{ENTER}", 0
  107.   File1
  108.   EditReplace .Find = "\lquote ", .Replace = "\'91", .ReplaceAll = 1
  109.   EditReplace .Find = "\rquote ", .Replace = "\'92", .ReplaceAll = 1
  110.   EditReplace .Find = "\ldblquote ", .Replace = "\'93", .ReplaceAll = 1
  111.   EditReplace .Find = "\rdblquote ", .Replace = "\'94", .ReplaceAll = 1
  112.   EditReplace .Find = "\emdash ", .Replace = "\'97", .ReplaceAll = 1
  113.   EditReplace .Find = "\endash ", .Replace = "\'96", .ReplaceAll = 1
  114.   '
  115.   ' NOTE:  you may want to add bullet or other codes to this list
  116.   '
  117.   FileSave
  118.   DocClose
  119. End Sub
  120.